home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / lib / tclX-6.4 / help / TclX.brf < prev   
Encoding:
Text File  |  1992-12-17  |  6.3 KB  |  115 lines

  1. control/commandloop     Create an interactive command loop.
  2. control/loop     Higher-performance for-style loop.
  3. debug/cmdtrace     Trace Tcl execution.
  4. debug/edprocs     Edit named procs, or all procs.
  5. debug/memory     display and debug memory problems
  6. debug/profile     Collect Tcl script performance profile data.
  7. debug/profrep     Generate a report from data collect from the profile command.
  8. debug/saveprocs     Save named procs to a file, or all procs.
  9. files/chgrp     Change file group.
  10. files/chmod     Set file permissions.
  11. files/chown     Change file owner and/or group.
  12. files/copyfile     Copy the remainder of one open file into another.
  13. files/dup     Duplicate an open filehandle.
  14. files/echo     Echo one or more strings to stdout, followed by a newline.
  15. files/fcntl     Get or set file access options for an open file.
  16. files/flock     Lock all or part of a file.
  17. files/for_file     Do a foreach-style loop on each line in a file.
  18. files/for_recursive_glob     Perform a foreach-style loop for all globbed files and directories.
  19. files/fstat     Obtain status information about an open file.
  20. files/funlock     Remove a lock from part or all of a file.
  21. files/lgets     Read a list for a file, handles embedded newlines.
  22. files/link     Create a link to a file.
  23. files/mkdir     Create a new directory
  24. files/pipe     Create a pipe.
  25. files/read_file     Read in a file to a string.
  26. files/recursive_glob     Do filename globbing, recursively descending all matched directories.
  27. files/rmdir     Remove directories
  28. files/select     Synchronous I/O multiplexing.
  29. files/unlink     Delete (unlink) files.
  30. files/write_file     Write strings out to a file.
  31. filescan/scancontext     Manage file scan contexts.
  32. filescan/scanfile     Scan a file, executing match code when their patterns are matched.
  33. filescan/scanmatch     Specify tcl code to execute when scanfile pattern is matched.
  34. help     Tcl shell help facility.
  35. internation/catclose     Close a message catalog.
  36. internation/catgets     Retrieve a message from a message catalog.
  37. internation/catopen     Open a message catalog.
  38. intro/keyedlists     Introduction to keyed lists
  39. keyedlists/keyldel     Delete a field of a keyed list.
  40. keyedlists/keylget     Get the value of a field of a keyed list.
  41. keyedlists/keylkeys     Get the keys in a keyed list.
  42. keyedlists/keylset     Set the value of a field of a keyed list.
  43. libraries/autoload     Autoloading of commands.
  44. libraries/autoprocs     List names of autoload and package library procs.
  45. libraries/buildpackageindex     Build an index to a package library.
  46. libraries/convert_lib     Convert an Ousterhout style tclIndex file to a package library.
  47. libraries/demand_load     Force an autoload proc or a package to be loaded.
  48. libraries/load     Search the TCLPATH for a file to source.
  49. libraries/loadlibindex     Load the index of a package library
  50. libraries/packagelib     Tcl shell package libraries.
  51. libraries/packages     List all known packages.
  52. libraries/utilprocs     Search a path list for a file.
  53. lists/assign_fields     Assign successive elements in a list to specified variables.
  54. lists/intersect     Return a list containing every element present in both lists.
  55. lists/intersect3     Return three lists from an intersection of two lists.
  56. lists/lempty     Determine if a list is empty. 
  57. lists/lrmdups     Given a list, remove all of the duplicated elements.
  58. lists/lvarcat     Concatenate the contents lists or strings into a variable
  59. lists/lvarpop     Pop or replace the specified element from a list.
  60. lists/lvarpush     Push or insert the an element into a list.
  61. lists/union     Return the logical union of two lists.
  62. math/acos     Return the arccosine of a number.
  63. math/asin     Return the arcsin of a number.
  64. math/atan     Return the arctangent of a number..
  65. math/ceil     Return the smallest integer not less than a floating point number.
  66. math/cos     Return the cosine of a number.
  67. math/cosh     Return the hyperbolic cosine of a number.
  68. math/exp     Return e to the power of a number.
  69. math/fabs     Return the absolute value of the floating point number.
  70. math/floor     Return the largest integer not greater than a floating point number.
  71. math/fmod     Perform a floating point modulus operation.
  72. math/log     Return the natural logarithm of a number.
  73. math/log10     Return the logarithm base 10 of a number.
  74. math/max     Return the argument that has the highest numeric value.
  75. math/min     Return the argument that has the lowest numeric value.
  76. math/pow     Return a number to the power of another number.
  77. math/random     Return a pseudorandom integer or set the seed.
  78. math/sin     Return the sin of a number.
  79. math/sinh     Return the hyperbolic sin of a number.
  80. math/sqrt     Return the square root of a number.
  81. math/tan     Return the tangent of a number.
  82. math/tanh     Return the hyperbolic tangent of a number.
  83. processes/execl     Perform a process exec, executing a file.
  84. processes/fork     Fork the current Tcl process.
  85. processes/kill     Send a signal to the specified process.
  86. processes/system     Execute command via `system' call.
  87. processes/wait     Wait for a child process to terminate.
  88. signals/signal     Specify action to take when a signal is received.
  89. status/dirs     List the directories in the directory stack.
  90. status/id     Access, set or convert process, user and group information.
  91. status/infox     Return information about Extended Tcl, or the current application.
  92. status/popd     Pop a directory from a stack of directories and cd to it.
  93. status/pushd     Push a directory to a stack of directories.
  94. status/showproc     List the definition of the named procedure.
  95. status/showprocs     List the definition of the named, or all, procedures.
  96. status/umask     Get or set the file-creation mode mask.
  97. strings/cindex     Return indexed character from string.
  98. strings/clength     Return length of specified string.
  99. strings/crange     Return range of characters from string.
  100. strings/csubstr     Return a substring from within a string.
  101. strings/ctype     Determine if a string has various characteristics.
  102. strings/replicate     Replicate string a number of times.
  103. strings/translit     Translate characters in a string according to patterns.
  104. tclshell/initialize     Tcl shell initialization sequence.
  105. tclshell/intro     Introduction to the tcl shell.
  106. tclshell/tclinit     Tcl shell initialization file.
  107. tclshell/variables     Tcl shell variables.
  108. time/alarm     Set a process alarm clock.
  109. time/convertclock     Parse and convert a date and time string to integer clock value.
  110. time/fmtclock     Convert an integer time value to human-readable format.
  111. time/getclock     Return current date and time as an integer value.
  112. time/sleep     Sleep for the specified number of seconds.
  113. time/times     Get process and child execution times.
  114. variables/for_array_keys     Do a foreach-style loop on each key in an array.
  115.